home *** CD-ROM | disk | FTP | other *** search
/ MacFormat España 24 / MacFormat n. 24 (Spain) / MacFormat 24.bin / Demos / Jungle Activated! / JungleActivated Demo / stdsound.dxr / 00008.ls < prev    next >
Encoding:
Text File  |  1996-10-14  |  349 b   |  15 lines

  1. on mouseUp
  2.   global gBackgroundSound, gDirectory
  3.   if the clickOn = gBackgroundSound then
  4.     exit
  5.   end if
  6.   set gBackgroundSound to the clickOn
  7.   sound playFile 2, gDirectory & "Sounds:Bckgrd" & gBackgroundSound & ".aif"
  8.   repeat with counter2 = 1 to 6
  9.     puppetSprite(counter2, 0)
  10.   end repeat
  11.   tell the stage
  12.     stopStdSound()
  13.   end tell
  14. end
  15.